Ektron CMS400.Net Reference
The ecmContentBlock and ecmContentBlockEX functions are used to display a content block on an Ektron CMS400.NET Web page.
Shown here is the format for the ecmContentBlock function:
<%= ecmContentBlock (int id) %> |
Here is the format for the ecmContentBlockEX function:
<%= ecmContentBlockEX (int id, String xslt, int OverrideId) %> |
These function is basically the same as the Content Block functions in ASP. See Content Block Function for details.
The only difference between the JSP function and the ASP one is the examples of implementing it. The JSP examples are below.
<tr>
<td>
<%= ecmContentBlock(1) %>
</td>
</tr>
<tr>
<td>
<%= ecmContentBlock($id) %>
</td>
</tr>
<tr>
<td>
<%= ecmContentBlockEx (13, “”, 1) %>
</td>
</tr>